home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / BevelStyle.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-16  |  398 b   |  13 lines

  1. package symantec.itools.awt;
  2.  
  3. public interface BevelStyle {
  4.    int BEVEL_LOWERED = 0;
  5.    int BEVEL_RAISED = 1;
  6.    int BEVEL_LINE = 2;
  7.    int BEVEL_NONE = 3;
  8.  
  9.    void setBevelStyle(int var1);
  10.  
  11.    int getBevelStyle();
  12. }
  13.